home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Atari Compendium
/
The Atari Compendium (Toad Computers) (1994).iso
/
files
/
prgtools
/
programm.ing
/
gfa
/
procdure.lzh
/
CENTER_T.LST
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
File List
|
1992-01-16
|
376 b
|
17 lines
PROCEDURE center_text(txt$,screen_line%)
LOCAL xa%
IF INT(screen_line%)>0 AND screen_line%<26
xa%=40
IF XBIOS(4)
xa%=80
ENDIF
IF LEN(txt$)<xa%
IF INT(screen_line%)=25
PRINT AT((xa%-LEN(txt$))/2+1,screen_line%);txt$;
ELSE
PRINT AT((xa%-LEN(txt$))/2+1,screen_line%);txt$
ENDIF
ENDIF
ENDIF
RETURN